home *** CD-ROM | disk | FTP | other *** search
/ Champak 52 / Volume 52 - JOGO DISK .iso / Games / sandwichstacker.swf / scripts / DefineButton2_201 / BUTTONCONDACTION on(press).as
Text File  |  2007-09-27  |  555b  |  21 lines

  1. on(press){
  2.    if(_parent.v.QuitWasPressed or _parent.v.HelpWasPressed or _parent.barre.action == "Swallow")
  3.    {
  4.       return undefined;
  5.    }
  6.    if(_parent.v.PauseWasPressed == undefined)
  7.    {
  8.       _parent.v.PauseWasPressed = false;
  9.    }
  10.    if(_parent.v.pause == false)
  11.    {
  12.       _parent.v.pause = true;
  13.       _parent.v.moving = false;
  14.       _parent.barre.action = "pauseAction";
  15.       _parent.barre.gotoAndPlay("pauseAction");
  16.       _parent.v.PauseWasPressed = true;
  17.       _parent.gotoAndStop("pause");
  18.       gotoAndStop(2);
  19.    }
  20. }
  21.